/* Overall section */
.about-section {
  padding: 80px 40px;
  background-color: #f4d4e0;
  );
}
body{
  background-color: #f181ac;
}
/* Title */
.about-title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 55px;
  letter-spacing: 0.5px;
}

.about-title::after {
  content: "";
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #22c55e, #38bdf8, #a855f7);
  display: block;
  margin: 14px auto 0;
  border-radius: 10px;
}

/* Container */
.about-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: stretch;
}

/* Cards */
.about-box {
  flex: 1;
  padding: 40px;
  border-radius: 22px;
  line-height: 1.8;
  background: #ffffff;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Soft colorful glow */
.about-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(56, 189, 248, 0.15),
    rgba(34, 197, 94, 0.15),
    rgba(168, 85, 247, 0.15)
  );
  opacity: 0.6;
  z-index: 0;
}

/* Hover effect */
.about-box:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.18);
}

/* Bring content above gradient */
.about-box * {
  position: relative;
  z-index: 1;
}

/* Headings */
.about-box h3 {
  font-size: 26px;
  margin-bottom: 18px;
  color: #020617;
}

/* Text */
.about-box p {
  font-size: 17px;
  color: #334155;
  margin-bottom: 15px;
}

/* PROBLEM card */
.problem {
  border-top: 7px solid transparent;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(90deg, #ef4444, #fb7185) border-box;
}

/* SOLUTION card */
.solution {
  border-top: 7px solid transparent;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(90deg, #22c55e, #4ade80) border-box;
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
  }
}
